Print Style Sheet and Export a Webpage to PDF in Selenium WebDriver 您所在的位置:网站首页 how to convert webpage to pdf using net and review Print Style Sheet and Export a Webpage to PDF in Selenium WebDriver

Print Style Sheet and Export a Webpage to PDF in Selenium WebDriver

2023-11-19 08:16| 来源: 网络整理| 查看: 265

Print Style Sheet and Export a Webpage to PDF in Selenium WebDriverPrint style sheets format a web page for printing.Zhimin Zhan

Zhimin Zhan

·

Follow

3 min read·Oct 2, 2022

--

A repost of my daughter’s article with permission. I added a few notes. This is also included in my “How to in Selenium WebDriver” series.

Exporting a web page to PDF in automated tests as a test artifact can be useful for manual inspection later. For example, a suite of automated tests might generate multiple different customer invoices. After execution, manual testers can open and verify the printed invoices (PDF) look as expected.

Selenium v4 made exporting to PDF easy with driver.save_print_page.

Sample page: login in WhenWise as the test business account and view an invoice. The page looks like this:

If using `driver.save_screenshot`, you will get this PNG image

Below is the current PDF-printed version of a WhenWise invoice (admin view, strictly no need to be printer-friendly, I will make it so):

Current WhenWise invoice page (admin view) exported to PDF

It’s not very well formatted — the top nav and side nav are still there. It would be better if these weren’t displayed during PDF printing.

Luckily for us, we can hide them with CSS’ print style.

@media print { html, body { height: 99%; overflow: hidden; # remove blank 2nd page }

header, aside#left-sidebar-nav, #breadcrumbs, #invoice_payments_wrapper_div { display: none; # hide nav bars }

div#main { padding-left: 0px; }}

Rerun the test and get the new version of the PDF:

It is better!

Note: Currently, the Print-to-PDF in Selenium only works with headless mode.

Selenium::WebDriver::Error::UnknownError: unknown error: PrintToPDF is only supported in headless mode


【本文地址】

公司简介

联系我们

今日新闻

    推荐新闻

    专题文章
      CopyRight 2018-2019 实验室设备网 版权所有